home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 033a / cal14s23.zip / QREAD.PAS < prev    next >
Pascal/Delphi Source File  |  1989-06-02  |  996b  |  42 lines

  1.  
  2. (*
  3.  * Copyright 1987, 1989 Samuel H. Smith;  All rights reserved
  4.  *
  5.  * This is a component of the ProDoor System.
  6.  * Do not distribute modified versions without my permission.
  7.  * Do not remove or alter this notice or any other copyright notice.
  8.  * If you use this in your own program you must distribute source code.
  9.  * Do not use any of this in a commercial product.
  10.  *
  11.  *)
  12.  
  13. (*
  14.  * QRead - Quick ReadLn Unit for Strings
  15.  *
  16.  * Written by Samuel Smith, 19-Nov-88
  17.  *
  18.  *)
  19.  
  20. {$S-,R-}
  21. {$D+,L+}
  22.  
  23. unit QRead;
  24.  
  25. interface
  26.  
  27.    procedure qReadLn( var fd: text;       {text file to read from}
  28.                       var dest: string;   {destination string}
  29.                       maxlen: word );     {sizeof dest string}
  30.  
  31.  
  32. implementation
  33.  
  34.    {$L qread.obj}
  35.    procedure qReadLn( var fd: text;       {text file to read from}
  36.                       var dest: string;   {destination string}
  37.                       maxlen: word );     {sizeof dest string}
  38.    external;
  39.  
  40. end.
  41.  
  42.